home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / include / stddef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-21  |  252 b   |  19 lines

  1. /* $VER: stddef.h 1.0 (02.03.95) */
  2.  
  3. #ifndef    _STDDEF_H_
  4. #define    _STDDEF_H_
  5.  
  6. typedef int        ptrdiff_t;
  7. typedef unsigned long    size_t;
  8. typedef char *        va_list;
  9.  
  10. #ifndef    NULL
  11. #define    NULL    0
  12. #endif
  13.  
  14. #ifndef MYLIB
  15. #define MYLIB
  16. #endif
  17.  
  18. #endif /* _STDDEF_H_ */
  19.